home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / unixSyscall / RCS / select.c,v < prev    next >
Text File  |  1991-12-10  |  3KB  |  135 lines

  1. head     1.2;
  2. branch   ;
  3. access   ;
  4. symbols  sprited:1.2.1;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.2
  10. date     89.03.22.12.20.49;  author douglis;  state Exp;
  11. branches 1.2.1.1;
  12. next     1.1;
  13.  
  14. 1.1
  15. date     88.06.19.14.31.55;  author ouster;  state Exp;
  16. branches ;
  17. next     ;
  18.  
  19. 1.2.1.1
  20. date     91.12.10.16.17.15;  author kupfer;  state Exp;
  21. branches ;
  22. next     ;
  23.  
  24.  
  25. desc
  26. @@
  27.  
  28.  
  29. 1.2
  30. log
  31. @make sure to zero out the bits as well as returning 0 when
  32. hitting a timeout, in the interests of unix compatibility
  33. @
  34. text
  35. @/* 
  36.  * select.c --
  37.  *
  38.  *    Procedure to map from Unix select system call to Sprite.
  39.  *
  40.  * Copyright 1986 Regents of the University of California
  41.  * All rights reserved.
  42.  */
  43.  
  44. #ifndef lint
  45. static char rcsid[] = "$Header: /sprite/src/lib/c/unixSyscall/RCS/select.c,v 1.1 88/06/19 14:31:55 ouster Exp Locker: douglis $ SPRITE (Berkeley)";
  46. #endif not lint
  47.  
  48. #include "sprite.h"
  49. #include "status.h"
  50. #include "fs.h"
  51. #include "compatInt.h"
  52. #include <sys/time.h>
  53.  
  54.  
  55. /*
  56.  *----------------------------------------------------------------------
  57.  *
  58.  * select --
  59.  *
  60.  *    Procedure to map from Unix select system call to Sprite Fs_Select.
  61.  *
  62.  * Results:
  63.  *    UNIX_ERROR is returned upon error, with the actual error code
  64.  *    stored in errno.  The number of ready descriptors is returned
  65.  *    upon success.
  66.  *
  67.  * Side effects:
  68.  *    None.
  69.  *
  70.  *----------------------------------------------------------------------
  71.  */
  72.  
  73. int
  74. select(width, readfds, writefds, exceptfds, timeout)
  75.     int width, *readfds, *writefds, *exceptfds;
  76.     struct timeval *timeout;
  77. {
  78.     ReturnStatus status;    /* result returned by Fs_Select */
  79.     int numReady;
  80.     Time spriteTimeout;
  81.     Time *timeoutPtr = NULL;
  82.  
  83.     if (timeout != NULL) {
  84.     spriteTimeout.seconds = timeout->tv_sec;
  85.     spriteTimeout.microseconds = timeout->tv_usec;
  86.     timeoutPtr = &spriteTimeout;
  87.     }
  88.     status = Fs_RawSelect(width, timeoutPtr, readfds, writefds,
  89.               exceptfds, &numReady);
  90.  
  91.     if (status != SUCCESS) {
  92.     if (status == FS_TIMEOUT) {
  93.         if (readfds != NULL) {
  94.         *readfds = 0;
  95.         }
  96.         if (writefds != NULL) {
  97.         *writefds = 0;
  98.         }
  99.         if (exceptfds != NULL) {
  100.         *exceptfds = 0;
  101.         }
  102.         return(0);
  103.     } else {
  104.         errno = Compat_MapCode(status);
  105.         return(UNIX_ERROR);
  106.     }
  107.     } else {
  108.     return(numReady);
  109.     }
  110. }
  111. @
  112.  
  113.  
  114. 1.2.1.1
  115. log
  116. @Initial branch for Sprite server.
  117. @
  118. text
  119. @d11 1
  120. a11 1
  121. static char rcsid[] = "$Header: /sprite/src/lib/c/unixSyscall/RCS/select.c,v 1.2 89/03/22 12:20:49 douglis Exp $ SPRITE (Berkeley)";
  122. @
  123.  
  124.  
  125. 1.1
  126. log
  127. @Initial revision
  128. @
  129. text
  130. @d11 1
  131. a11 1
  132. static char rcsid[] = "$Header: select.c,v 1.7 88/05/19 15:53:52 deboor Exp $ SPRITE (Berkeley)";
  133. d59 9
  134. @
  135.